home *** CD-ROM | disk | FTP | other *** search
/ InfoMagic Internet Tools 1993 July / Internet Tools.iso / RockRidge / mail / pp / pp-6.0 / h / alias.h < prev    next >
Encoding:
C/C++ Source or Header  |  1991-12-18  |  611 b   |  36 lines

  1. /* alias.h: alias structure definition (man page ALIASES(5)) */
  2.  
  3. /*
  4.  * @(#) $Header: /xtel/pp/pp-beta/h/RCS/alias.h,v 6.0 1991/12/18 20:42:44 jpo Rel $
  5.  *
  6.  * $Log: alias.h,v $
  7.  * Revision 6.0  1991/12/18  20:42:44  jpo
  8.  * Release 6.0
  9.  *
  10.  *
  11.  */
  12.  
  13.  
  14.  
  15. #ifndef _H_ALIAS
  16. #define _H_ALIAS
  17.  
  18. #define        ALIAS_EXTERNAL        3
  19.  
  20. typedef struct  alias_struct {
  21.     int             alias_type;
  22. #define         ALIAS_SYNONYM           1
  23. #define         ALIAS_PROPER            2
  24.     char            alias_user[LINESIZE];
  25.     int        alias_external;
  26.     int        alias_ad_type;
  27. } ALIAS;
  28.  
  29.  
  30. #define NULLALIAS                       ((ALIAS *)0)
  31.  
  32.  
  33.  
  34.  
  35. #endif
  36.